home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Tools - Objects / MPW C++ / MPW C++ 3.1 / Interfaces / CIncludes / new.h < prev    next >
Text File  |  1990-09-11  |  611b  |  25 lines

  1. /*ident    "@(#)ctrans:incl-master/proto-headers/new.h    1.4" */
  2.  
  3. /***********************************************************************
  4.  
  5.     Copyright (c) 1984 AT&T, Inc. All rights Reserved
  6.     THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T, INC.
  7.  
  8.         The copyright notice above does not evidence any
  9.         actual or intended publication of such source code.
  10.  
  11. **************************************************************************/
  12.  
  13. #ifndef __NEW__
  14. #define __NEW__
  15.  
  16. #ifndef __STDDEF__
  17. #include <stddef.h>
  18. #endif
  19.  
  20. extern void (*set_new_handler (void(*)()))();
  21.  
  22. void *operator new(size_t, void*);
  23.  
  24. #endif
  25.